home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #11 / Software USA Volume 4.11.iso / mac / Educational / mac06 / etc / inittab < prev    next >
Encoding:
Text File  |  1998-06-17  |  767 b   |  39 lines  |  [TEXT/ttxt]

  1. # mac06©1997,98 by HNS/DSITRI hns@computer.org
  2. #
  3. # /etc/inittab
  4. # list of processes to be kept running by init process - even if they exit
  5. # format:
  6. #         id:runlevel:action:process
  7. #            # comment
  8. # id:
  9. #   any identifier of one or two characters
  10. # runlevel:
  11. #   any set of 's', 0-7 - empty set means 'all'
  12. # action:
  13. #   initdefault
  14. #   sysinit
  15. #   respawn
  16. #   off
  17. #   powerfail
  18. #   int<nn>
  19. # process:
  20. #   a command executed by sh -c "exec cmd"
  21. #
  22.  
  23. 0:0:initdefault:
  24.  
  25. # start up system daemons
  26.  
  27. start::sysinit:/usr/bin/sh /etc/rc
  28.  
  29. # spawn initial shell
  30.  
  31. cmdshell:s:respawn:/bin/sh -i </dev/console 1>&0 2>&1
  32.  
  33. # spawn new shell on apple-N (SIGUSR1)
  34.  
  35. newshell::int23:/bin/sh -i </dev/tty* 1>&0 2>&1
  36.  
  37. run1:3:respawn:/bin/getty /dev/ttyp1
  38. run2:3:respawn:/bin/getty /dev/modem
  39.